home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / szlibc.c < prev    next >
C/C++ Source or Header  |  1997-01-18  |  2KB  |  58 lines

  1. /* Copyright (C) 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* szlibc.c */
  20. /* Code common to zlib encoding and decoding streams */
  21. #include "std.h"
  22. #include "gstypes.h"
  23. #include "gsmemory.h"
  24. #include "gsstruct.h"
  25. #include "strimpl.h"
  26. #include "szlibx.h"
  27. #include "zconf.h"
  28.  
  29. public_st_zlib_state();
  30.  
  31. #define ss ((stream_zlib_state *)st)
  32.  
  33. /* Set defaults for stream parameters. */
  34. void
  35. s_zlib_set_defaults(stream_state *st)
  36. {    ss->windowBits = MAX_WBITS;
  37.     ss->no_wrapper = false;
  38.     ss->level = Z_DEFAULT_COMPRESSION;
  39.     ss->method = Z_DEFLATED;
  40.     /* DEF_MEM_LEVEL should be in zlib.h or zconf.h, but it isn't. */
  41.     ss->memLevel = min(MAX_MEM_LEVEL, 8);
  42.     ss->strategy = Z_DEFAULT_STRATEGY;
  43. }
  44.  
  45. #undef ss
  46.  
  47. /* Provide zlib-compatible allocation and freeing functions. */
  48. void *
  49. s_zlib_alloc(void *mem, uint items, uint size)
  50. {    void *address =
  51.       gs_alloc_byte_array((gs_memory_t *)mem, items, size, "zlib");
  52.     return (address == 0 ? Z_NULL : address);
  53. }
  54. void
  55. s_zlib_free(void *mem, void *address)
  56. {    gs_free_object((gs_memory_t *)mem, address, "zlib");
  57. }
  58.